home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / include / sun4.md / alloca.h < prev    next >
C/C++ Source or Header  |  1990-03-15  |  852b  |  28 lines

  1. /*
  2.  * alloca.h --
  3.  *
  4.  *    Declarations of alloca() for the sun4.  Since the sun4 has
  5.  *      register window, this can't be handled in the normal way.
  6.  *
  7.  * Copyright 1989 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /sprite/src/lib/include/sun4.md/RCS/alloca.h,v 1.3 90/03/15 11:55:31 ouster Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _ALLOCA_H
  20. #define _ALLOCA_H
  21.  
  22. #ifdef sun4
  23. #define alloca(p)  ((char *) __builtin_alloca(p))
  24. #endif
  25.  
  26. #endif /* _ALLOCA_H */
  27.  
  28.